AE 315 · Experimental Aerodynamics · Spring 2025 · ERAU
The tunnel was set to 15 m/s and the airfoil adjusted to each angle of attack from −3° to 12° in 3° increments. At each angle, the traversing pitot-static tube swept 76 height positions behind the airfoil to capture the wake velocity profile, while the 18 static pressure ports sampled the airfoil surface pressure simultaneously.
Pressure readings (in inH₂O) were converted to Pa and normalized by dynamic pressure to obtain the pressure coefficient C_p = (P_diff + q_inf) / q_inf. The lift coefficient was computed by integrating the pressure difference between lower and upper surfaces: C_l = (1/c) ∫ (C_p_lower − C_p_upper) dx. The drag coefficient was derived from the wake momentum deficit: C_d = (2/U∞²c) ∫ U_w(U∞ − U_w) dy. Moment coefficients about the leading edge and quarter chord were obtained from weighted pressure integrals. All results were compared to panel code (potential flow) predictions loaded from PanelCode.mat.
Wake traverse and surface pressure data were loaded from .mat and .csv files, converted, and integrated to produce aerodynamic coefficients. Below is a representative excerpt; the full script is AE315_LAB3_Code.m.
% Wake velocity from traversing pitot-static data
Velocity = sqrt(2 * dp / rho0);
% Freestream: average outside the wake bounds
freestream(i) = mean([Velocity(i,1:LowBnd(i)), Velocity(i,UppBnd(i):end)]);
% Drag from momentum deficit
D(i) = rho0 * trapz(z_matrix(i, LowBnd(i):UppBnd(i)), ...
Velocity(i, LowBnd(i):UppBnd(i)) .* ...
(freestream(i) - Velocity(i, LowBnd(i):UppBnd(i))));
% Pressure coefficient from 18 surface taps
q = 0.5 * rho0 * freestream(i)^2;
Cp(i, :) = (p_mean(i, :) ./ q) + 1;
% Lift from Cp integration (lower minus upper surface)
Cl(i) = trapz(lower_x_val, Cp_lower(i,:)) - trapz(upper_x_val, Cp_upper(i,:));
% Zero-lift angle of attack
zero_lift_AoA = interp1(Cl, AoA_vals, 0, 'linear', 'extrap'); % = -3.31°